/* Base Styles and Reset  for both */
* {
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', 'Noto Sans', sans-serif;
}

body {
  background-color: #fcfcfc;
  color: #333;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  box-sizing: border-box;  
}







  
/* for only in Dialect (language name ) */
.navbar-langauge {
  background-color: #f0f0f0;
  display: flex;
  justify-content: space-around;
  padding: 0 2%;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 99;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.menu {
  position: relative;
  padding: 20px 15px;
  cursor: pointer;
}

.menu-title {
  font-weight: 500;
  position: relative;
}

.menu-title::after {
  content: '';
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: #ff7800;
  transition: width 0.3s;
}

.menu:hover .menu-title::after {
  width: 100%;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  width: 400px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
  z-index: 10;
}

.menu:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-content {
  display: flex;
  padding: 20px;
}

.dropdown-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 60%;
}

.dropdown-links a {
  color: #555;
  font-size: 15px;
  transition: color 0.2s;
}

.dropdown-links a:hover {
  color: #ff7800;
}

.dropdown-image {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.dropdown-image img {
  width: 100%;
  border-radius: 4px;
}

.dropdown-image span {
  font-size: 13px;
  color: #777;
  text-align: center;
}


/* Language Section */
.language-section {
  padding: 60px 5%;
  display: flex;
  align-items: center;
  gap: 40px;
}

.language-content {
  flex: 1;
}

.language-content h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #333;
}

.language-content p {
  margin-bottom: 15px;
  font-size: 16px;
  color: #555;
}

.language-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.language-image img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}


/* Section Title */
.section-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  color: #333;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 60px;
  height: 3px;
  background-color: #ff7800;
  transform: translateX(-50%);
}

/* Dialect Cards */
.dialect-cards {
  padding: 60px 5%;
  background-color: #f9f9f9;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.dialect-card {
  background-color: rgb(245, 239, 239);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card-image {
  height: 180px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.card-content {
  padding: 20px;
}

.card-content h3 {
  font-size: 20px;
  margin-bottom: 5px;
  color: #333;
}

.region {
  font-size: 14px;
  color: #777;
  margin-bottom: 15px;
}

.card-content p {
  font-size: 15px;
  color: #555;
  margin-bottom: 15px;
}

.explore-btn {
  display: inline-block;
  padding: 8px 15px;
  background-color: #ff7800;
  color: white;
  border-radius: 4px;
  font-size: 14px;
  transition: background-color 0.3s;
}

.explore-btn:hover {
  background-color: #e66d00;
}

/* Map Section */
.map-section {
  padding: 60px 5%;
  text-align: center;
}

.map-section p {
  margin-bottom: 30px;
  font-size: 16px;
  color: #666;
}

.map-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.map-image {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Cultural Highlights */
.cultural-highlights {
  padding: 60px 5%;
  background-color: #f9f9f9;
}

.highlights-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.highlight-item {
  background-color: white;
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.highlight-item:hover {
  transform: translateY(-5px);
}

.highlight-icon {
  font-size: 32px;
  margin-bottom: 15px;
}

.highlight-title {
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
}

.highlight-item p {
  font-size: 14px;
  color: #666;
}

/* Audio Sample Buttons */
.audio-sample-btn {
  padding: 10px 18px;
  font-size: 15px;
}

/* Newsletter */
.newsletter {
  padding: 60px 5%;
  background-color: #5e3900;
  color: white;
  text-align: center;
}

.newsletter-content {
  max-width: 700px;
  margin: 0 auto;
}

.newsletter h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.newsletter p {
  margin-bottom: 25px;
  font-size: 16px;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: 4px 0 0 4px;
  font-size: 15px;
}

.newsletter-form button {
  padding: 12px 25px;
  background-color: #ff7800;
  color: white;
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  font-size: 15px;
  transition: background-color 0.3s;
}

.newsletter-form button:hover {
  background-color: #e66d00;
}




.newsletter-container {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-top: 40px;
  text-align: center;
}
h1 {
  color: #9c4e16;
  margin-bottom: 10px;
}
.subtitle {
  color: #666;
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 1.5;
}
.form-group {
  margin-bottom: 20px;
  text-align: left;
}
label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}
input[type="email"] {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  box-sizing: border-box;
}
button {
  background-color: #9c4e16;
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 18px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}
button:hover {
  background-color: #7b3c10;
}
.confirmation {
  display: none;
  color: #2e7d32;
  margin-top: 20px;
  padding: 10px;
  border-radius: 4px;
  background-color: #e8f5e9;
}
.error-message {
  display: none;
  color: #c62828;
  margin-top: 20px;
  padding: 10px;
  border-radius: 4px;
  background-color: #ffebee;
}
.features {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  text-align: left;
  gap: 20px;
}
.feature {
  flex-basis: 30%;
}
.feature h3 {
  color: #9c4e16;
}




/* Responsive Styles */
@media (max-width: 1024px) {
  .language-section {
    flex-direction: column;
  }
  
  .navbar {
    overflow-x: auto;
    justify-content: flex-start;
  }
  
  .menu {
    padding: 15px 10px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 70px 5%;
  }
  
  .hero h2 {
    font-size: 28px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  .dropdown {
    width: 300px;
  }
  
  .dropdown-content {
    flex-direction: column;
  }
  
  .dropdown-links, .dropdown-image {
    width: 100%;
  }
  
  .dropdown-image {
    margin-top: 15px;
  }
  
  .top-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  
  .language-switcher {
    position: static;
    margin-top: 10px;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input, .newsletter-form button {
    width: 100%;
    border-radius: 4px;
  }
  
  .newsletter-form button {
    margin-top: 10px;
  }
  
  .audio-player {
    width: 90%;
    border-radius: 8px;
    padding: 10px;
  }
  
  .audio-progress {
    width: 100px;
  }
}






@media (max-width: 480px) {
  .dropdown {
    width: 250px;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .language-content h2 {
    font-size: 24px;
  }
  
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 35px;
    height: 35px;
  }
}













/* Achievement  */


/* मुख्य सामग्री स्टाइल */
main {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
} 

section {
    background-color: white;
    border-radius: 8px;
    margin-bottom: 30px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
} 

section h2 {
    color: #e91e63;
    font-size: 2rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}






/* सेक्शन सामग्री लेआउट */
.section-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.section-content.reverse {
    flex-direction: row-reverse;
}

.text-content {
    flex: 1;
    min-width: 300px;
}

.text-content p {
    margin-bottom: 15px;
    text-align: justify;
}

/* इमेज प्लेसहोल्डर */
.image-placeholder {
    flex: 1;
    min-width: 300px;
    height: 250px;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
}

.placeholder {
    font-weight: bold;
    color: #757575;
    text-align: center;
    padding: 20px;
}

/* प्रसिद्ध व्यक्तित्व सेक्शन */
.personalities {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.personality-card {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.personality-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.personality-card h3 {
    color: #263238;
    margin: 15px 0;
    text-align: center;
}

.personality-card .image-placeholder {
    height: 200px;
    margin-bottom: 15px;
}

/* उपलब्धियां सेक्शन */
.achievements {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.achievement-card {
    flex: 1;
    min-width: 180px;
    max-width: 250px;
    padding: 20px;
    background-color: #e91e63;
    color: white;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(233, 30, 99, 0.3);
}

.achievement-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.achievement-text {
    font-size: 1rem;
}

/* गांव सौंदर्य सेक्शन */
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.gallery-item {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
}

.gallery-item .image-placeholder {
    height: 180px;
    margin-bottom: 10px;
}

.gallery-item p {
    text-align: center;
    font-style: italic;
}

.village-description {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

/* सांस्कृतिक विरासत सेक्शन */
.heritage-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.heritage-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.heritage-card h3 {
    color: #263238;
    margin: 15px 0;
    text-align: center;
}

.heritage-card .image-placeholder {
    height: 200px;
    margin-bottom: 15px;
}


/* Responsive */
@media (max-width: 768px) {
  .header .container {
    flex-direction: column;
    gap: 15px;
  }

  .nav ul {
    flex-direction: column;
    gap: 10px;
  }

  .slide-text {
    left: 20px;
    right: 20px;
    bottom: 30px;
    padding: 20px;
  }

  .slide-text h1 {
    font-size: 28px;
  }

  .slide-text p {
    font-size: 16px;
  }

  .art-card {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 20px;
  }

  .art-card p {
    font-size: 14px;
  }
}



















/* Army Contribution - CSS */

#army-contribution .section-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap; /* for responsiveness */
}

#army-contribution .text-content {
    flex: 1;
    padding: 20px;
    text-align: left;
}

#army-contribution .image-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

#army-contribution .image-placeholder img {
    width: 250px;         /* fixed width */
    height: 180px;        /* fixed height */
    object-fit: cover;    /* crop nicely without distortion */
    border-radius: 10%;   
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}




/* Bihar Village Beauty - Style.css */




 /* ==== Navbar ==== */
  
 /* .header-content {
  background-color: rgba(139, 0, 0, 0.8);
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.logo {
  color: white;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 1px;
}

.header-content {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.header-content li a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s, transform 0.3s;
} */

/* .nav-links li a:hover {
  color: #ffd700;
  transform: scale(1.1);
} */

/* Mobile menu button */
.menu-toggle {
  display: none;
  cursor: pointer;
  color: white;
  font-size: 1.5rem;
  background: none;
  border: none;
  padding: 5px;
}


.navbar-button {
  background-color: #a93226;
  padding: 10px 20px;
}

.back-button {
  color: white;
  background-color: #641e16;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.back-button:hover {
  background-color: #922b21;
}

















/* Navigation Styles */
.navbar {
  background-color: rgba(139, 0, 0, 0.8);
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  height: 70px;
}

.logo {
  color: white;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 1px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s, transform 0.3s;
}

.nav-links li a:hover {
  color: #ffd700;
  transform: scale(1.1);
}
/* Logo Image */
.logo-img {
  padding-top: 0px;
  height: 50px;
  width: auto;
}




/* Main Section Styling */
#village-beauty {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}
/* 
h2 {
    text-align: center;
    color: #3e6b1e;
    font-size: 2.5rem;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
}

h2:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #3e6b1e, #e9b64b);
    border-radius: 2px;
}

h3 {
    color: #3e6b1e;
    font-size: 1.8rem;
    margin-top: 50px;
    margin-bottom: 25px;
    position: relative;
    padding-left: 15px;
}

h3:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 25px;
    background-color: #e9b64b;
    border-radius: 3px;
} */

/* Main Gallery Styles */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.gallery-item {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    position: relative;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(62, 107, 30, 0.15);
}

.gallery-image {
    height: 250px;
    width: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-item p {
    padding: 15px 20px;
    margin: 0;
    font-size: 0.95rem;
    color: #444;
    border-top: 3px solid #e9b64b;
    background-color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
}

/* Fixed Gallery Items Outside Container */
#village-beauty > .gallery-item {
    margin: 0 auto 30px;
    max-width: 350px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
}

/* Village Description Styles */
.village-description {
    background-color: #fff;
    padding: 30px 35px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.village-description:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 100%;
    background: linear-gradient(to bottom, #3e6b1e, #e9b64b);
}

.village-description p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.village-description p:last-child {
    margin-bottom: 0;
}



/* Crop Calendar Styles */
.crop-calendar {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    margin-bottom: 50px;
}

.crop-calendar > p {
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.seasons {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.season {
    flex: 1;
    min-width: 250px;
    background-color: #f7fbf1;
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid #3e6b1e;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.season:hover {
    transform: translateY(-5px);
}

.season:nth-child(1) {
    border-left-color: #78a046; /* Spring green */
}

.season:nth-child(2) {
    border-left-color: #e9b64b; /* Summer gold */
}

.season:nth-child(3) {
    border-left-color: #d5723f; /* Fall orange */
}

.season h4 {
    color: #3e6b1e;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.season ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.season li {
    margin-bottom: 8px;
    position: relative;
}

/* Sustainable Practices Section */
.sustainable-practices {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.practice-card {
    background-color: #fff;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.practice-card:hover {
    transform: translateY(-8px);
}

.practice-card:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #3e6b1e, #e9b64b);
    bottom: 0;
    left: 0;
}

.practice-icon {
    width: 90px;
    height: 90px;
    background-color: #f0f8e3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
    color: #3e6b1e;
    box-shadow: 0 8px 20px rgba(62, 107, 30, 0.1);
    transition: transform 0.3s ease;
}

.practice-card:hover .practice-icon {
    transform: scale(1.1);
}

.practice-card h4 {
    color: #3e6b1e;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.practice-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Quote Section */
.farmer-quote {
    background: linear-gradient(135deg, #3e6b1e, #3a7734);
    color: white;
    padding: 40px 50px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    margin-bottom: 40px;
    box-shadow: 0 15px 30px rgba(62, 107, 30, 0.2);
    overflow: hidden;
}

.quote-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    line-height: 1.7;
}

.quote-author {
    font-weight: bold;
    position: relative;
    z-index: 1;
}

.quote-marks {
    font-size: 100px;
    position: absolute;
    color: rgba(255, 255, 255, 0.07);
    font-family: Georgia, serif;
}

.quote-start {
    top: 10px;
    left: 20px;
}

.quote-end {
    bottom: 0;
    right: 20px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    h2 {
        font-size: 2.2rem;
    }
    
    h3 {
        font-size: 1.6rem;
    }
    
    .gallery-image {
        height: 220px;
    }
    
    .farmer-quote {
        padding: 35px 30px;
    }
}

@media (max-width: 768px) {
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.4rem;
    }
    
    .gallery {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .gallery-image {
        height: 200px;
    }
    
    .sustainable-practices {
        grid-template-columns: 1fr;
    }
    
    .farmer-quote {
        padding: 30px 25px;
    }
    
    .quote-text {
        font-size: 1.1rem;
    }
    
    .quote-marks {
        font-size: 80px;
    }
}

@media (max-width: 576px) {
    #village-beauty {
        padding: 20px 15px;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .gallery {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        max-width: 320px;
        margin: 0 auto;
    }
    
    .gallery-image {
        height: 220px;
    }
    
    .village-description {
        padding: 25px 20px 25px 30px;
    }
    
    .agriculture-info, 
    .crop-calendar, 
    .practice-card {
        padding: 20px;
    }
    
    .seasons {
        flex-direction: column;
    }
    
    .quote-marks {
        font-size: 60px;
    }
}


.village-people-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.people-info {
    flex: 1 1 45%;
}

.people-video {
    flex: 1 1 45%;
}

.people-video iframe {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}




/* FOOTER */
footer {
  background-color: #222;
  color: #fff;
  padding: 40px 20px;
  font-family: 'Arial', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 30px;
}

.footer-section {
  flex: 1 1 200px;
}

.footer-section h2 {
  color: #f7c200;
  margin-bottom: 10px;
}

.footer-section p {
  margin: 5px 0;
  font-size: 14px;
}

.footer-section.social img {
  margin-right: 10px;
  margin-top: 10px;
  vertical-align: middle;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #555;
  padding-top: 20px;
  margin-top: 30px;
  font-size: 14px;
  color: #ccc;
}

